What will be the output of the code snippet given below?
int i;for(i = 0; i<=10; i++){ if(i == 4) { Console.Write(i + " "); continue; } else if (i != 4) Console.Write(i + " "); else break;}
Answer: Option C
Explanation: